home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / fortran / fckdemo1.zip / GLOBARG3.LST < prev    next >
File List  |  1994-04-12  |  683b  |  30 lines

  1. c
  2. c                       FORCHECK
  3. c               Global Argument Verification 3
  4.  
  5.         PROGRAM Draw
  6.         CHARACTER*80 linbuf
  7.  
  8.         DO i = 1, 10
  9.           CALL PRINT (linbuf)
  10.           READ *, linbuf
  11.         ENDDO
  12.         END
  13.  
  14.  
  15.         SUBROUTINE PRINT (linbuf)
  16.         CHARACTER*120 linbuf
  17.         PRINT *, linbuf
  18.         END
  19.  
  20.  FORCHECK PC V11.10  MS5 compiler emulation  20-Jan-94  11:34:14  page: 1
  21.  GLOBARG3.FOR  
  22.  
  23.  
  24.  global program analysis:
  25.  
  26.    PRINT, referenced in DRAW, argument no  1
  27.  **[386 E] input argument was not assigned
  28.    PRINT, referenced in DRAW, argument no  1
  29.  **[296 E] actual array or character variable shorter than dummy
  30.